home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1995 March / Macworld CD-ROM (March 1995).cdr / Updaters / AppMaker 1.5.2->1.5.4 / Libraries / THINK / AMClassLibC / CAMCheckBox.cp < prev    next >
Encoding:
Text File  |  1991-09-20  |  915 b   |  34 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  CAMCheckBox.c
  3.         
  4.     
  5.     Like the CheckBox class that it overrides, except that font, size and
  6.     style can be set from a control pane (CtlP) resource.
  7.  
  8.     SUPERCLASS = CCheckBox
  9.     
  10.     Copyright © 1991 Bowers Development Corporation. All rights reserved.
  11.  
  12.  ******************************************************************************/
  13.  
  14. #include "CAMCheckBox.h"
  15. #include "AMUtilities.h"
  16.     
  17. /******************************************************************************
  18.  IViewTemp
  19.  
  20.      Initialize a CheckBox's ControlPane using a template
  21.  
  22. ******************************************************************************/
  23.  
  24. void CAMCheckBox::IViewTemp                 (CView            *anEnclosure,
  25.                                           CBureaucrat    *aSupervisor,
  26.                                           Ptr            viewData)
  27. {
  28.     IAMControlPane (this, anEnclosure, aSupervisor, viewData);
  29.  
  30. } /* IViewTemp */
  31.  
  32. /* CAMCheckBox */
  33.  
  34.